home *** CD-ROM | disk | FTP | other *** search
/ Super PC 33 / Super PC 33 (Shareware).iso / spc / sonido / timidity / source / install < prev    next >
Encoding:
Text File  |  1995-08-03  |  2.6 KB  |  82 lines

  1. ---------------------------------*-text-*---------------------------------
  2.  
  3.     TiMidity -- Experimental MIDI to WAVE converter
  4.     Copyright (C) 1995 Tuukka Toivonen <titoivon@snakemail.hut.fi>
  5.  
  6. --------------------------------------------------------------------------
  7.  
  8.     INSTALLATION INSTRUCTIONS
  9.  
  10. --------------------------------------------------------------------------
  11.  
  12.     You need at least the source distribution ("timidity-0.2d.tar.gz"
  13. or later).  If you don't have any GUS-compatible patches or MIDI files,
  14. you should also get "timidity-lib-0.1.tar.gz", which contains Dustin
  15. McCartney's excellent acoustic piano and nylon guitar patches, and some
  16. sample MIDI files.  When you've unpacked both archives, change into the
  17. directory "timidity" and follow the four easy steps:
  18.  
  19.  
  20. (1)    Check the options in the Makefile and config.h and say:
  21.  
  22.         make
  23.  
  24.     If timidity won't compile, check paths to headers and libraries,
  25.     edit the Makefile appropriately, and try again. Note that you'll
  26.     need ncurses to build the ncurses interface. 
  27.  
  28.  
  29. (2)    Adjust audio volume to a comfortable level and say:
  30.  
  31.     Linux/FreeBSD:
  32.  
  33.         ./timidity -OdM -s22 midi/impromptu.mid
  34.  
  35.     HP-UX (you need to be running the HP network audio server):
  36.  
  37.         ./timidity -OdM -s22 -o`hostname` midi/impromptu.mid
  38.  
  39.     SunOS:
  40.  
  41.         ./timidity -OdM -s22050 midi/impromptu.mid
  42.  
  43.     System without audio driver (a 2,335,998-byte, 8-kHz uLaw file
  44.     "output.au" will be generated):
  45.  
  46.         ./timidity -OrMU -s8 -o output.au midi/impromptu.mid
  47.  
  48.     You should get a rendition of Chopin's Fantasie Impromptu.  
  49.     If not, and you're running Linux, try making noise with some
  50.     other software to make sure your sound hardware is working
  51.     properly. On systems other than Linux, you may need to fiddle
  52.     with the options -- these examples are untested :) Let me know
  53.     what works.
  54.  
  55.     If you get choppy sound, make sure TiMidity is getting enough CPU
  56.     time. You can try using a lower sampling rate (the -s option).
  57.  
  58.  
  59. (3)    When you've got a working executable, you can check the target
  60.     directories in the Makefile, become root if necessary, and say:
  61.  
  62.         make install.all
  63.  
  64.     to install the executable, the manual page, and the support files
  65.     (patches and MIDI examples) in the directories specified. If you
  66.     don't wish to install the support files, you can say:
  67.  
  68.         make install.bin install.man
  69.  
  70.     to install just the executable and the manual page.
  71.  
  72.  
  73.  
  74. (4)    Now you can play around with the options to get the best sound
  75.     quality. 
  76.  
  77.         timidity -h
  78.  
  79.     will get you a brief list. More detailed information is available
  80.     in the manual page. Also, check out the FAQ for pointers to more 
  81.     instruments and MIDI files.
  82.